flow of control - definição. O que é flow of control. Significado, conceito
Diclib.com
Dicionário Online

O que (quem) é flow of control - definição

ORDER IN WHICH INDIVIDUAL STATEMENTS, INSTRUCTIONS OR FUNCTION CALLS OF AN IMPERATIVE PROGRAM ARE EXECUTED OR EVALUATED
Program loop; Control structure; Program flow; Control structures; Exitwhen; Continue (Java); Loop index; Flow of control; Counter controlled loops; Count controlled loop; Loop (computing); Loop (programming); Until loop; Program loops; Control construct; Break statement; Break statements; Break (Unix); Continue (keyword); Control statement; Flow control construct; Nested loop; Continue statement; Control variable (programming); Control flow architecture; Control-flow architecture; Control-flow; Break;; Control flow statement; Control-flow statement; Controlflow; Control flag; Program flow of control; Program control flow; Minimal structured control flow
  • A [[state diagram]] of a peptide ion mass mapping search process.

flow of control         
control flow         
<programming> (Or "flow of control") The sequence of execution of instructions in a program. This is determined at run time by the input data and by the control structures (e.g. "if" statements) used in the program. Not to be confused with "flow control". (1997-09-14)
Control flow         
In computer science, control flow (or flow of control) is the order in which individual statements, instructions or function calls of an imperative program are executed or evaluated. The emphasis on explicit control flow distinguishes an imperative programming language from a declarative programming language.

Wikipédia

Control flow

In computer science, control flow (or flow of control) is the order in which individual statements, instructions or function calls of an imperative program are executed or evaluated. The emphasis on explicit control flow distinguishes an imperative programming language from a declarative programming language.

Within an imperative programming language, a control flow statement is a statement that results in a choice being made as to which of two or more paths to follow. For non-strict functional languages, functions and language constructs exist to achieve the same result, but they are usually not termed control flow statements.

A set of statements is in turn generally structured as a block, which in addition to grouping, also defines a lexical scope.

Interrupts and signals are low-level mechanisms that can alter the flow of control in a way similar to a subroutine, but usually occur as a response to some external stimulus or event (that can occur asynchronously), rather than execution of an in-line control flow statement.

At the level of machine language or assembly language, control flow instructions usually work by altering the program counter. For some central processing units (CPUs), the only control flow instructions available are conditional or unconditional branch instructions, also termed jumps.

Exemplos de pronúncia para flow of control
1. you get the possibility of conditional flow of control.
Stuart _ Talks at Google
2. code in a way that's actually -- you're going to see the flow of control.
Coders at Work _ Peter Seibel _ Talks at Google